home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / deleti1r / frame.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-07-15  |  928 b   |  36 lines

  1. VERSION 5.00
  2. Begin VB.MDIForm frmFrame 
  3.    BackColor       =   &H8000000C&
  4.    ClientHeight    =   3675
  5.    ClientLeft      =   165
  6.    ClientTop       =   735
  7.    ClientWidth     =   5295
  8.    LinkTopic       =   "MDIForm1"
  9.    StartUpPosition =   3  'Windows Default
  10.    Begin VB.Menu mnuFile 
  11.       Caption         =   "File"
  12.       Begin VB.Menu mnuAudio 
  13.          Caption         =   "Audio player"
  14.       End
  15.       Begin VB.Menu mnnExit 
  16.          Caption         =   "Exit"
  17.       End
  18.    End
  19. Attribute VB_Name = "frmFrame"
  20. Attribute VB_GlobalNameSpace = False
  21. Attribute VB_Creatable = False
  22. Attribute VB_PredeclaredId = True
  23. Attribute VB_Exposed = False
  24. ' Frame.frm
  25. Option Explicit
  26. Private Sub MDIForm_Load()
  27.     Me.WindowState = 2
  28.     frmAudioPlayer.Show
  29. End Sub
  30. Private Sub mnuAudio_Click()
  31.     frmAudioPlayer.Show
  32. End Sub
  33. Private Sub mnnExit_Click()
  34.     End
  35. End Sub
  36.